.phone-input {
    display: flex;
}

.phone-input select {
    width: 35%;
    margin-right: 10px;
    background-color: #2d2d2d;
    color: #fff;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.phone-input input {
    width: 65%;
}

.c-container {
    max-width: 1200px;
    margin: 100px auto;
    background-color: rgba(26,26,26,0.95);
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.c-header {
    text-align: center;
    margin-bottom: 40px;
}

.company-name {
    font-size: 34px;
    font-weight: bold;
    color: #FFD700;
}

.tagline {
    font-size: 20px;
    color: #e5e5e5;
    margin-top: 8px;
}

.content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.description {
    flex: 2;
}

.description h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #FFD700;
}

.description p {
    line-height: 1.6;
    margin-bottom: 16px;
    color: #e5e5e5;
}

.description ul {
    list-style: none;
    padding-left: 0;
}

.description li {
    margin-bottom: 8px;
    color: #e5e5e5;
    position: relative;
    padding-left: 20px;
}

.description li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
}

.form {
    flex: 1;
    background-color: rgba(13,13,13,0.95);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.form h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #FFD700;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    color: #e5e5e5;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px;
    background-color: #2d2d2d;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #FFD700;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit-btn:hover {
    background-color: #c5a300;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .c-container {
        padding: 20px;
        margin: 90px auto;
    }

    .form {
        width: 90vw;
    }
}
